home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / demos / wheel2 / maple / makefile < prev    next >
Makefile  |  1999-09-16  |  390b  |  25 lines

  1. SHELL = /bin/sh
  2.  
  3. include ../../../Version.incl
  4. include ../../../Makefile.incl
  5.  
  6. OBJS = /tmp/wheel.o /tmp/wheelg.o
  7.  
  8. all:: $(OBJS)
  9.  
  10. /tmp/wheel.o: wheel.f
  11.     $(FC) $(FFLAGS) -c wheel.f -o /tmp/wheel.o
  12.  
  13. clean::
  14.     $(RM) /tmp/wheel.o
  15. distclean::
  16.     $(RM) /tmp/wheel.o
  17.  
  18. /tmp/wheelg.o: wheelg.f
  19.     $(FC) $(FFLAGS) -c wheelg.f -o /tmp/wheelg.o
  20.  
  21. clean::
  22.     $(RM) /tmp/wheelg.o
  23. distclean::
  24.     $(RM) /tmp/wheelg.o
  25.